home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 25
/
Aminet 25 (1998)(GTI - Schatztruhe)[!][Jun 1998].iso
/
Aminet
/
comm
/
bbs
/
QN07.lha
/
qnlog.dd
< prev
Wrap
Text File
|
1998-02-12
|
4KB
|
76 lines
/* Quick Note LogOn v0.7 Door for DDBBS -- by Xpose */
Parse Arg node
Options results
nodeid="DREAMREXX"node
address value nodeid
tr = transmit
MENU:
tr "";
tr "
--------------------------------------------------------------------------------"
tr "
- - - - - - - - - - - - - -|
Quick Note Logon v0.7
|- - - - - - - - - - - - - -"
tr "
--------------------------------------------------------------------------------"
tr "
"
tr "
[>=-
Check Out
P
ublic Notes
-=<]"
tr "
"
tr "
[>=-
Read
C
omments to SysOp
-=<]"
tr "
"
tr "
[>=-
Read
N
otes for SysOp
-=<]"
tr "
"
tr "
[>=-
A
bout QNL
-=<]"
tr "
"
tr "
[>=-
Q
UIT
-=<]"
tr ""
tr "
--------------------------------------------------------------------------------"
tr "
- - - - - - - - - - - - - -|
Quick Note Logon v0.7
|- - - - - - - - - - - - - -"
tr "
--------------------------------------------------------------------------------"
getchar
if result = "p" then call PUBLIC
if result = "c" then call COMMENTS
if result = "n" then call NOTES
if result = "a" then call ABout
if result = "q" then shutdown
call MENU
PUBLIC:
tr "";tr " Public messeges :> ";newline;newline
sendany "DOORS:QN/PNOTES.DAT"
getchar
call MENU
COMMENTS:
getuser 22; if result = "255" then call CLEAR1
tr "";tr " Sorry, but you are NOT the SysOp (or within access range) to view these comments .";getchar;call MENU
CLEAR1:
tr ""; tr " Here are the comments from the users your Royal Highness ."
newline;newline
sendany "DOORS:qn/comments.DAT"
getchar
call MENU
NOTES:
getuser 22; if result = "255" then call CLEAR2
tr "";tr " Sorry, but you are NOT the SysOp (or within access range) to view the notes .";getchar;call MENU
CLEAR2:
tr ""; tr " Here are all the notes written to you, your Royal Highness .";newline;newline
sendany "DOORS:qn/Snotes.DAT"
getchar
call MENU
ABOUT:
tr ""
tr "
__________________________________________________________________ "
tr "
\
\"
tr "
\
Quick Note LogOn door v0.7 for Daydream BBS w/ ARexx support
\"
tr "
\
~~~~~~~~~~~~~~~~
( Included in the Quick Notes Archive )
\"
tr "
\
\"
tr "
\
Coding & Graphical Design by Xpose - Xpose1200@mailexcite.com -
\"
tr "
\
\"
tr "
\
Special Thanx to : PSi, Enigma, Life, EXoTiC, Apple Miranda,
\"
tr "
\
\"
tr "
\
My Amiga, Gateway2000, Phase5, and the rest!
\"
tr "
\__________________________________________________________________
\"
tr "
";getchar;call MENU